ostree-prepare-root: Fix typo in error message
authorWilliam Manley <will@williammanley.net>
Tue, 26 Jul 2016 17:05:25 +0000 (18:05 +0100)
committerAtomic Bot <atomic-devel@projectatomic.io>
Tue, 2 Aug 2016 19:07:25 +0000 (19:07 +0000)
Closes: #403
Approved by: cgwalters

src/switchroot/ostree-prepare-root.c

index f469a1b926f7ad60ce94dfc39cd8e4e11d573898..895b2e510d61e7f289a8cb34aacf2bbf5b1c52d4 100644 (file)
@@ -222,7 +222,7 @@ main(int argc, char *argv[])
   /* Make deploy_path a bind mount, so we can move it later */
   if (mount (deploy_path, deploy_path, NULL, MS_BIND, NULL) < 0)
     {
-      perrorv ("failed to initial bind mount %s", deploy_path);
+      perrorv ("failed to make initial bind mount %s", deploy_path);
       exit (EXIT_FAILURE);
     }